API Documentation
StringUtils.h
1 // StringUtils.h
3 //
5 
6 namespace nkScripts
7 {
11  class StringUtils final
12  {
13  public :
14 
22  static std::vector<std::string> splitUserTypeName (const std::string_view& userTypeName) ;
23 
30  static std::string_view interpreterToString (INTERPRETER value) ;
37  static INTERPRETER stringToInterpreter (const std::string_view& value) ;
38  } ;
39 }
nkScripts
Encompasses all API of component NilkinsScripts.
Definition: Environment.h:7
nkScripts::StringUtils::stringToInterpreter
static INTERPRETER stringToInterpreter(const std::string_view &value)
nkScripts::StringUtils
Utility for string manipulations.
Definition: StringUtils.h:12
nkScripts::StringUtils::interpreterToString
static std::string_view interpreterToString(INTERPRETER value)
nkScripts::StringUtils::splitUserTypeName
static std::vector< std::string > splitUserTypeName(const std::string_view &userTypeName)
nkScripts::INTERPRETER
INTERPRETER
Supported scripting environments.
Definition: Interpreter.h:12